home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 21 / AACD 21.iso / AACD / Utilities / Ghostscript / src / iimage.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-01-01  |  1.7 KB  |  46 lines

  1. /* Copyright (C) 1996, 1997, 1998, 1999 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of AFPL Ghostscript.
  4.   
  5.   AFPL Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author or
  6.   distributor accepts any responsibility for the consequences of using it, or
  7.   for whether it serves any particular purpose or works at all, unless he or
  8.   she says so in writing.  Refer to the Aladdin Free Public License (the
  9.   "License") for full details.
  10.   
  11.   Every copy of AFPL Ghostscript must include a copy of the License, normally
  12.   in a plain ASCII text file named PUBLIC.  The License grants you the right
  13.   to copy, modify and redistribute AFPL Ghostscript, but only under certain
  14.   conditions described in the License.  Among other things, the License
  15.   requires that the copyright notice and this notice be preserved on all
  16.   copies.
  17. */
  18.  
  19. /*$Id: iimage.h,v 1.2 2000/09/19 19:00:44 lpd Exp $ */
  20. /* Image operator entry points */
  21. /* Requires gscspace.h, gxiparam.h */
  22.  
  23. #ifndef iimage_INCLUDED
  24. #  define iimage_INCLUDED
  25.  
  26. /* These procedures are exported by zimage.c for other modules. */
  27.  
  28. /* Exported for zcolor1.c */
  29. int zimage_opaque_setup(P6(i_ctx_t *i_ctx_p, os_ptr op, bool multi,
  30.                gs_image_alpha_t alpha, const gs_color_space * pcs,
  31.                int npop));
  32.  
  33. /* Exported for zimage2.c */
  34. int zimage_setup(P5(i_ctx_t *i_ctx_p, const gs_pixel_image_t * pim,
  35.             const ref * sources, bool uses_color, int npop));
  36.  
  37. /* Exported for zcolor3.c */
  38. int zimage_data_setup(P5(i_ctx_t *i_ctx_p, const gs_pixel_image_t * pim,
  39.              gx_image_enum_common_t * pie,
  40.              const ref * sources, int npop));
  41.  
  42. /* Exported for zcolor1.c and zdpnext.c. */
  43. int zimage_multiple(P2(i_ctx_t *i_ctx_p, bool has_alpha));
  44.  
  45. #endif /* iimage_INCLUDED */
  46.